ArcPad applet file (*.apa) with a form:
Copy Code | |
---|---|
<?xml version="1.0" encoding="UTF-8" ?> <ArcPad> <APPLET name="Statistics"> <FORMS> <FORM name="frmStatistics" caption="Statistics" width="115" height="115" tabsvisible="false" font="tahoma" fontsize="8" onload="Call SetInitialValues"> <PAGE name="onlypage" caption="Summary Statistics"> <COMBOBOX name="cboLayer" x="32" y="4" width="70" height="40" sip="false" group="false" border="true" tabstop="true" limittolist="true" onselchange="Call SetFields"/> <LABEL name="slblLayer" x="3" y="5" width="28" height="8" caption="Layer" group="false" border="false"/> <LABEL name="slblField" x="3" y="20" width="28" height="8" caption="Field" group="false" border="false"/> <COMBOBOX name="cboField" x="32" y="19" width="70" height="40" sip="false" group="false" border="true" tabstop="true" onselchange="Call GetStats" /> <LABEL name="slblCount" x="3" y="35" width="28" height="8" caption="Count:" group="false" border="false"/> <LABEL name="slblMinimum" x="3" y="45" width="32" height="8" caption="Minimum:" group="false" border="false"/> <LABEL name="slblMaximum" x="3" y="55" width="32" height="8" caption="Maximum:" group="false" border="false"/> <LABEL name="slblSum" x="3" y="65" width="23" height="8" caption="Sum:" group="false" border="false"/> <LABEL name="slblMean" x="3" y="75" width="23" height="8" caption="Mean:" group="false" border="false"/> <LABEL name="slblRange" x="3" y="85" width="23" height="8" caption="Range:" group="false" border="false"/> <LABEL name="slblVariance" x="3" y="95" width="30" height="8" caption="Variance:" group="false" border="false"/> <LABEL name="slblSD" x="3" y="105" width="65" height="8" caption="Standard Deviation:" group="false" border="false"/> <LABEL name="vlblCount" x="32" y="35" width="50" height="8" group="false" border="false"/> <LABEL name="vlblMinimum" x="38" y="45" width="50" height="8" group="false" border="false"/> <LABEL name="vlblMaximum" x="38" y="55" width="50" height="8" group="false" border="false"/> <LABEL name="vlblSum" x="28" y="65" width="50" height="8" group="false" border="false"/> <LABEL name="vlblMean" x="28" y="75" width="50" height="8" group="false" border="false"/> <LABEL name="vlblRange" x="29" y="85" width="50" height="8" group="false" border="false"/> <LABEL name="vlblVariance" x="35" y="95" width="50" height="8" group="false" border="false"/> <LABEL name="vlblSD" x="70" y="105" width="45" height="8" group="false" border="false"/> </PAGE> </FORM> </FORMS> <TOOLBARS> <TOOLBAR> <TOOLBUTTON name="tlLoadForm" image="sigma.bmp" onclick="Call LoadForm" /> </TOOLBAR> </TOOLBARS> </APPLET> <SCRIPT src="Statistics.vbs" /> </ArcPad> |